home *** CD-ROM | disk | FTP | other *** search
- /*
- * $VER: ST2ArtEffect.strx 1.0 (29.05.97) Waldemar Zöhner
- *
- * Requirements: ScanTek V3.0 or higher
- * ArtEffekt 2.0 or higher
- *
- * Description: Load the last scanned image direct into ArtEffekt.
- *
- * Uses: RC contains the Errorlevel of each ScanTek command
- * SCANTEK.LASTERROR contains the related error string
- * RESULT contains the result of some ScanTek command
- *
- */
-
- Options FailAt 100
-
- Options Results
-
-
- Address SCANTEK1
-
- GetImageName
-
- IF rc > 0
- THEN
- DO
- say SCANTEK.LASTERROR
- EXIT
- END;
-
- say 'GetImageName Result is 'Result
-
-
- Address "ArtEffect"
-
- loadpic Result
-
-
- EXIT
-